
/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  
  //CSS
  
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  
  //CSS
  
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
  
  //CSS
  
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
  //CSS
  
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media screen and (max-width: 767px) {
  
  .navbar .navbar-brand img { max-height: 54px; }
  .spmobile {margin-bottom: 1em;}
  .section-title h1 { font-size: 20px; } 
  .section-title p { font-size: 15px; }
  .sevcard p { font-size: 15px; }
  .sevcard h3 { font-size: 20px; line-height: 1.7; }
  .ourservcard h2 { font-size: 20px; } 
  .ourservcard p { font-size: 15px; }
  .whyuscard h3 { font-size: 20px; } 
  .whyuscard p { font-size: 15px; }
  .all-page {margin-top: 2em;}
  .section-header .btn { margin-top: 2em; }
  .section-header h2 { font-size: 20px; line-height: 1.7; }
  .prcard img { height: 300px; }
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media screen and (max-width: 480px) {

  .navbar .navbar-brand img { max-height: 54px; }
  .spmobile {margin-bottom: 1em;}
  .section-title h1 { font-size: 20px; } 
  .section-title p { font-size: 15px; }
  .sevcard p { font-size: 15px; }
  .sevcard h3 { font-size: 20px; line-height: 1.7; }
  .ourservcard h2 { font-size: 20px; }
  .ourservcard p { font-size: 15px; }
  .whyuscard h3 { font-size: 20px; } 
  .whyuscard p { font-size: 15px; }
  .all-page {margin-top: 2em;}
  .section-header .btn { margin-top: 2em; }
  .section-header h2 { font-size: 20px; line-height: 1.7; }
  .prcard img { height: 240px; }
  
}